home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / recipe.dxr / 00020_Hide if in Recipe Practice Mode.ls < prev    next >
Encoding:
Text File  |  2000-03-23  |  204 b   |  15 lines

  1. property pDestination, pSpr
  2.  
  3. on beginSprite me
  4.   pSpr = sprite(me.spriteNum)
  5.   if inRecipeMode() then
  6.     pSpr.visible = 0
  7.   else
  8.     pSpr.visible = 1
  9.   end if
  10. end
  11.  
  12. on endSprite me
  13.   pSpr.visible = 1
  14. end
  15.